calendar: Fix else branch indentations
authorTimm Bäder <mail@baedert.org>
Sat, 18 Mar 2017 06:06:35 +0000 (07:06 +0100)
committerDaniel Boles <dboles@src.gnome.org>
Sat, 18 Mar 2017 12:33:04 +0000 (12:33 +0000)
gtk/gtkcalendar.c

index f274c634759a86dc864c3047df8a1a3c5309360b..cd6f6871791ec26bdccd22ae33255eda75f97a5f 100644 (file)
@@ -2257,13 +2257,13 @@ calendar_paint_header (GtkCalendar *calendar, cairo_t *cr)
       x = header_width - (3 + max_month_width
                           - (max_month_width - logical_rect.width)/2);
     else
-    x = 3 + (max_month_width - logical_rect.width) / 2;
+      x = 3 + (max_month_width - logical_rect.width) / 2;
   else
     if (year_left)
       x = header_width - (3 + priv->arrow_width + max_month_width
                           - (max_month_width - logical_rect.width)/2);
     else
-    x = 3 + priv->arrow_width + (max_month_width - logical_rect.width)/2;
+      x = 3 + priv->arrow_width + (max_month_width - logical_rect.width)/2;
 
   gtk_render_layout (context, cr, x, y, layout);
   g_object_unref (layout);